home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Delphi 5 Companion Tools CD / FreeWare / HVDLL / HVDLL.ZIP / TestImpProj.dpr < prev    next >
Encoding:
Text File  |  1999-08-04  |  498 b   |  19 lines

  1. program TestImpProj;
  2. { This project demonstrates how to use the HVDLL unit and shows
  3.   the alternative ways of importing DLL routines }
  4. uses
  5.   Forms,
  6.   TestImpUnit in 'TestImpUnit.pas' {DllImportTestForm},
  7.   ImpImpTestDll in 'ImpImpTestDll.pas',
  8.   ExpImpTestDll in 'ExpImpTestDll.pas',
  9.   DynLinkTest in 'DynLinkTest.pas',
  10.   HVDll in 'HVDll.pas';
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TDllImportTestForm, DllImportTestForm);
  17.   Application.Run;
  18. end.
  19.